home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel Corporation.',
- 'Copyright': u'Copyright (c) 2003-2006 Corel Corporation. All rights reserved.',
- 'Description': u'Factory default preset for LensBlur effect',
- 'Host': u'Corel Paint Shop Pro Photo XI',
- 'Host Version': u'11.00'
- }
-
- def Preset_LensBlur():
- return {
- 'Amount': 5,
- 'Focus': 0,
- 'Feather': 20,
- 'Selection': [(1296,972),(1897,1573)],
- 'SelectionMode': 3,
- 'InvertSelection': False,
- 'ApertureShape': 0
- }
-
- def Do(Environment):
- # DepthOfField_LOCALIZED
- App.Do( Environment, 'LensBlur', Preset_LensBlur())
-
-
-